home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / gui / precog2_1.lha / Precognition2_1 / src / src.lha / Precognition / gridsnap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-28  |  341 b   |  25 lines

  1. #ifndef GRIDSNAP_H
  2. #define GRIDSNAP_H
  3.  
  4. #include "intuition_typedefs.h"
  5.  
  6. typedef struct GridSettings
  7. {
  8.    Point offset;
  9.    Point gridsize;   
  10.    BOOL  OnOff;
  11. } GridSettings;
  12.  
  13.  
  14. Point GridSnap( Point coord, struct GridSettings gs );
  15.  
  16.  
  17. typedef struct GridInfo
  18. {
  19.    struct GridSettings location;
  20.    struct GridSettings size;
  21. } GridInfo;
  22.  
  23.  
  24. #endif
  25.